home *** CD-ROM | disk | FTP | other *** search
/ Ultimate Blitz Basic 2.1 / Ultimate Blitz Basic 2.1 (1997)(Acid Software).iso / blitz2 / releasenotes < prev    next >
Text File  |  1997-10-02  |  3KB  |  75 lines

  1.                    Blitz Basic 2.1 Release Notes
  2.                    =============================
  3.  
  4.  
  5. 1. Introduction
  6. ---------------
  7.  
  8. Welcome to Mark Sibly's BlitzBasic programming language. A powerful
  9. integrated programming environment for all Amiga computers.
  10.  
  11. New to version 2.1:
  12.  
  13. - online help
  14. - restructured library handling
  15. - bug free parameter passing
  16. - comprehensive AGA and 3.0 support
  17.  
  18. The main Blitz program disk has been put together so users programming
  19. on 1 meg single floppy A500 systems can boot straight from the disk
  20. and start programming immediately. Those with more powerful systems
  21. should note that due to space restrictions the advanced debugger,
  22. third party libraries and enhanced editor can be found on the extras
  23. disk.
  24.  
  25.  
  26.  
  27. 2. Up and Running
  28. -----------------
  29.  
  30. A lot of reviews of Blitz have criticised it for being unstable. Most
  31. often they have missed the fundamental concept of runtime errors that
  32. Blitz uses to stop your program crashing during development.
  33.  
  34. When runtime errors are enabled from the compiler options, Blitz compiles
  35. your program with checks on every command so it can't do the guru thing
  36. and make us at Acid look bad. These checks however make your program bigger
  37. and slower making us at Acid look bad anyway.
  38.  
  39. As we don't really care what we look like, we offer this advise; always
  40. enable runtime errors until you are quite sure your program can not
  41. fall over (bringing up the runtime error debugger). Once you are sure
  42. it is bulletproof THEN disable error checking and let it fly. This also
  43. applies to official Acid demos as wrong directories and unfound files
  44. may cause errors also.
  45.  
  46.  
  47. 3. Online Help
  48. --------------
  49.  
  50. Previous versions of Blitz incorporated a simple syntax help system
  51. whereby pressing the Help key when the cursor was on a Blitz command
  52. would print the syntax of that command on the title bar.
  53.  
  54. Blitz2.1 now sports a full online reference manual, simply use the Right
  55. Amiga/Help keyboard combination to invoke the Blitz online help software.
  56.  
  57.  
  58. 4. Library handling
  59. -------------------
  60.  
  61. BlitzBASIC commands are loaded by the program from several sources:
  62.  
  63. acidlibs - a single file containing standard Blitz commands
  64. deflibs  - commands compiled from third party libs found in blitzlibs:
  65. userlibs - all libs found in directories branching off blitz2:userlibs
  66.  
  67. The reason for this change is to make it easier for Acid Software to
  68. distribute libs in the future. Users who build up a collection of third
  69. party libraries in their deflibs file will be able to upgrade their
  70. acidlibs without reconstructing their entire blitzlibs: volume.
  71.  
  72. Those developers creating their own libraries can now use the userlibs
  73. drawer to hold beta versions of their compiled libs allowing for much
  74. faster reloading of libs during development.
  75.